home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / PPC1B3AA.ZIP / FLASH.PPS < prev    next >
Text File  |  1996-08-29  |  879b  |  47 lines

  1. ;----------------------------------------------------------------------------
  2. ; Copyright(C) 1996, The AEGiS Corporation
  3. ;----------------------------------------------------------------------------
  4. ;
  5. ; PROCEDURE FlashStr()
  6. ;
  7. ; Flashs a word in the middle of the screen, as when you quit some aegis ppes
  8. ;
  9. ;----------------------------------------------------------------------------
  10. #lib
  11. #nouser
  12.  
  13. Declare Procedure FlashStr(String Str)
  14.  
  15. ;----------------------------------------------------------------------------
  16. Procedure FlashStr(String Str)
  17.  
  18. Color @X0F
  19. Cls
  20.  
  21. AnsiPos 40-Len(Str)/2,11
  22. Color @X08
  23. Gosub Flash
  24. Color @X07
  25. Gosub Flash
  26. Color @X0F
  27. Gosub Flash
  28. Color @X07
  29. Gosub Flash
  30. Color @X08
  31. Gosub Flash
  32. Color @X0F
  33. Print Space(Len(Str))
  34.  
  35. Goto EndFlash
  36.  
  37. :Flash
  38. Print Str
  39. Delay 2
  40. Backup len(Str)
  41. Return
  42.  
  43. :EndFlash
  44. AnsiPos 1,1
  45.  
  46. Endproc
  47.